GET
/
1
/
crawlers
curl --request GET \
  --url https://crawler.algolia.com/api/1/crawlers \
  --header 'Authorization: Basic <encoded-value>'
{
  "itemsPerPage": 20,
  "page": 1,
  "total": 100,
  "items": [
    {
      "id": "e0f6db8a-24f5-4092-83a4-1b2c6cb6d809",
      "name": "test-crawler"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

itemsPerPage
integer
default:20

Number of items per page to retrieve.

Required range: 1 <= x <= 100
page
integer
default:1

Page to retrieve.

Required range: 1 <= x <= 100
name
string

Name of the crawler for filtering the API response.

Maximum length: 64
Example:

"test-crawler"

appID
string

Algolia application ID for filtering the API response.

Response

200
application/json

OK

Pagination information.